home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / dosutils / tsbat50.zip / PORTS.BAT < prev    next >
DOS Batch File  |  1992-12-06  |  548b  |  17 lines

  1. @echo off
  2. echo.
  3. echo ┌───────────────────────────────────────────────────┐
  4. echo │ Show ports' reversed high/low base I/O addresses  │
  5. echo │ Adaption from PC Computing Nov 1992, p. 370       │
  6. echo │ By Prof. Timo Salmi, ts@uwasa.fi, Sun 6-Dec-1992  │
  7. echo └───────────────────────────────────────────────────┘
  8. echo.
  9.  
  10. echo d 0040:0000> debug.in
  11. echo q>> debug.in
  12. debug < debug.in > debug.out
  13. echo             COM1  COM2  COM3  COM4  LPT1  LPT2  LPT3  LPT4
  14. type debug.out | find "0040:0000" | find /v "-d"
  15. del debug.in
  16. del debug.out
  17.